home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / www / cgi-bin / DTcompress < prev    next >
Encoding:
Korn shell script  |  1996-11-11  |  121 b   |  9 lines

  1. #!/bin/ksh
  2. typeset -i errcode
  3. compress -c
  4. errcode=$?
  5.  
  6. if (($errcode != 0 && $errcode != 2)); then  
  7.     exit $errcode
  8. fi
  9.